1fef0d7687b332a1fc16691295f15c0405933104,src/main/java/logbook/internal/gui/ItemController.java,ShipImageCell,updateItem,#Ship#boolean#,292
Before Change
if (!empty) {
this.setGraphic(new ImageView(Ships.shipWithItemImage(ship)));
if (ship != null) {
String name = Ships.shipMst(ship)
.map(ShipMst::getName)
.orElse("");
this.setText(Messages.getString("ship.name", name, ship.getLv())); //$NON-NLS-1$
} else {
this.setText("未装備");
}
After Change
if (!empty) {
this.setGraphic(new ImageView(Ships.shipWithItemImage(ship)));
if (ship != null) {
this.setText(Ships.toName(ship));
} else {
this.setText("未装備");
}